Availability | 3.0 | ||||
Description | Copies the specified file to the specified URL. | ||||
Arguments | originalURL, copyURL |
||||
|
|||||
Returns | TRUE if the copy succeeded, FALSE otherwise. |
||||
Example | The following code copies a file called myconfig.cfg to myconfig_backup.cfg. | ||||
![]() |
var fileURL = "file:///c|/Config/myconfig.cfg"; var newURL ="file:///c|/Config/myconfig_backup.cfg"; DWfile.copy(fileURL, newURL); |
|
![]() |